home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tcclib.exe
/
PUTCUR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-07-18
|
184 b
|
12 lines
#include <dos.h>
void PutCursor( int Top, int Bottom )
{
union REGS reg;
reg.x.ax = 0x0100;
reg.h.ch = Bottom & 15;
reg.h.cl = Top & 15;
int86( 0x10, ®, ® );
}